/* 新闻资讯板块 */
.index_two_one_left,
.index_two_one_right {
  display: none;
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(10%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 人力资源板块 */
.index_tow_box_three_left_top,
.index_tow_box_three_right_top,
.index_tow_box_three_left,
.index_two_box_three_right,
.index_two_box_three_left_bom,
.index_two_box_three_right_bom {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.index_tow_box_three_left_top,
.index_tow_box_three_right_top {
  transform: translateY(-50px);
}

.index_two_box_three_left_bom,
.index_two_box_three_right_bom,
.index_tow_box_three_left,
.index_two_box_three_right {
  transform: translateY(50px);
}

.index_tow_box_three_left_top.show,
.index_tow_box_three_right_top.show,
.index_two_box_three_left_bom.show,
.index_two_box_three_right_bom.show,
.index_tow_box_three_left.show,
.index_two_box_three_right.show {
  opacity: 1;
  transform: translateY(0);
}

/* 项目展示板块 */
.index-three .shellB,
.index-three .title {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1s ease-in-out;
}

.index-three .shellB.show,
.index-three .title.show {
  opacity: 1;
  transform: translateY(0);
}

/* 加入我们板块 */
.index-four .index-four-box-top,
.index-four .index-four-box-bom {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.index-four .index-four-box-top {
  transform: translateX(100px);
}

.index-four .index-four-box-bom {
  transform: translateY(50px);
}

.index-four .index-four-box-top.show,
.index-four .index-four-box-bom.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}